Search
CollectionBase(T).CopyTo Method
See Also
 





Copies the entire collection to a compatible one-dimensional array, starting at the specified index of the target array.

Namespace: MindFusion.Diagramming
Assembly: MindFusion.Diagramming

 Syntax

C#  Copy Code

public void CopyTo (
    T[] array,
    int arrayIndex
)

Visual Basic  Copy Code

Public Sub CopyTo( _
    array() As T, _
    arrayIndex As Integer _
)

 Parameters

array

The one-dimensional array that is the destination of the elements copied from collection.

arrayIndex

The zero-based index in array at which copying begins.

 See Also